html,
body {
	width: 100%;
}

img {
	max-width: 100%;
}
.clear1{
	display:block;
}
.clear2{
	display:none;
}

/*导航*/

.pc_header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 55px;
	background: #1b1b1b;
	z-index: 999;
}

.header-box {
	margin: 0 auto;
	width: 95%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fupad img {
	width: auto;
	height: 22px;
}

.fupad {
	margin-right: 5%;
}

.header-left {
	display: flex;
	width: 850px;
	align-items: center;
	justify-content: flex-start;
}

.navbar {
	position: initial;
	padding-bottom: 0;
	padding-top: 0;
	
}

.header-left .navbar-brand {
	padding: 0;
}

.header-left .nav-item {
	margin: 0 15px!important;
	transition: all 0.3s;
}

.header-left .nav-link {
	position: relative;
	color: #fff;
	display: flex;
	height: 55px;
	padding: 0!important;
	font-size: 14px;
	font-weight: normal;
	align-items: center;
	justify-content: center;
	min-width: 64px;
}

.nav-item>a.nav-link:hover {
	color: #fff;
}

.header-left .dropdown-toggle::after {
	display: none;
}

.header-right {
	display: flex;
	color: #fff;
	line-height: 55px;
}

.header-right a {
	cursor: pointer;
}

.header-right a.search_btn {
	display: inline-block;
	width: 50px;
	height: 55px;
	text-align: center;
	font-size: 16px;
	margin-right: 15px;
}

.header-right a.lang_box {
	width: 50px;
	margin-right: 15px;
	color:#fff;
}

.header-right a.lang_box i {
	margin-right: 5px;
	font-size: 16px;
}

.menu_box {
	position: relative;
	width: 50px;
	height: 55px;
	cursor: pointer;
}

.menu_box .menu_a {
	position: absolute;
	right: 50%;
	top: 50%;
	margin-top: -1px;
	margin-right: -11px;
	width: 22px;
	height: 2px;
	background: #fff;
}

.menu_box .menu_b {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.menu_box .menu_b:after {
	content: "";
	position: absolute;
	top: -8px;
	left: 0;
	height: 2px;
	width: 16px;
	background: #fff;
	transition: all 0.3s;
}

.menu_box .menu_b:before {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	height: 2px;
	width: 16px;
	background: #fff;
	transition: all 0.4s;
}

.menu_box:hover .menu_b:after,
.menu_box:hover .menu_b:before {
	width: 20px;
	transition: all 0.4s;
}


/* 二级 */

.dropdown:hover .dropdown-menu_box {
	display: block;
}

.dropdown-menu_box {
	left: 0;
	right: 0;
	width: 100%;
	top: calc(100% - 2px);
	z-index: 999;
	background: #414141;
	padding: 0px 0 0px;
	border-radius: 2px;
	transform: translateX(-30%);
	box-shadow:0 3px 10px rgba(0,0,0,0.1)
}

i.i_btn {
	display: block;
	position: absolute;
	left: 0px;
	bottom: 1px;
	width: 0;
	height: 2px;
	background: #00aeef;
	opacity: 0;
}

.nav-item:hover i.i_btn,
.nav-item.cur i.i_btn{
	width: 100%;
	opacity: 1;
	transition: all 0.3s;
}

.dropdown-toggle::after {
	display: none!important;
}

.dropdown-menu_box ul:after {
	content: '.';
	height: 0;
	clear: both;
	visibility: hidden;
	display: block;
	font-size: 0
}

.dropdown-menu_box ul {
	position: relative;
	padding-left: 0;
	margin: 0 auto;
}

.dropdown-menu_box ul li {
	position: relative;
	list-style: none;
	
}

.dropdown-menu_box ul li a {
	position: relative;
	display: block;
	font-size: 14px;
	height: 51px;
	line-height: 50px;
	border-bottom: none!important;
	color: #fff;
	padding: 0px 20px;
	transition: all 0.2s;
	text-align: center;
}

.dropdown-menu_box ul li:last-child a {
	border: none;
}

.dropdown-menu_box ul li a:hover,
.dropdown-menu_box ul li a:focus {
	color: #fff;
	background:#414141;
}

.dropdown-menu_box ul li a:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 100%;
	background: #00aeef;
	transition: all 0.3s;
	z-index: 0;
}

.dropdown-menu_box ul li a:hover {
	background: #414141;
}

.dropdown-menu_box ul li a:hover:before {
	right: 0;
	transition: all 0.3s;
}

.dropdown-menu_box ul li a span {
	position: relative;
	z-index: 1;
}


/*隐藏菜单*/

.hide-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffffff;
	z-index: 9999999;
	transform: translateY(-200%);
	transition: all 0.6s;
}

.hide-menu.cur {
	transform: translateY(0%);
	transition: all 0.6s;
}

.hide-menu .header-box {
	height: 55px;
}

.hide-menu-container {
	padding: 4%;
	display: flex;
	width: 100%;
	flex-direction: row;
}

.hide-menu-container>.contact_div {
	display: flex;
	border-right: 1px solid #EAEAEA;
	padding-right: 5%;
	margin-right: 5%;
	width: 100%;
	align-items: flex-start;
	flex-direction: column;
}

.hide-menu-container>.contact_div:last-child {
	border: none;
	margin-right: 0;
}

.contact_div h2.title {
	margin-bottom: 30px;
	font-weight: normal;
}

.hide-menu-list {
	width: 100%;
}

.hide-menu-list ul li {
	list-style: none;
	margin-bottom: 10px;
}

.menu-contact-list h4 {
	font-weight: normal;
}

.menu-contact-list ul li {
	border-bottom: 1px solid #eeeeee;
	width: 100%;
	margin-bottom: 24px;
	padding-bottom: 15px;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
	width: 100%;
	padding: 10px 15px;
	height: 50px;
	line-height: 26px;
	font-size: 14px;
	color: #333333;
	background-repeat: no-repeat;
	background-position: .5rem center;
	background-size: .5rem;
	background-color: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	transition: all .3s;
}

.feedback-submit {
	background: #00aeef;
	color: #ffffff;
	border-radius: 6px;
	width: 200px;
	height: 50px;
}

.hide-menu .menu_box {
	background: #414141;
	cursor: pointer;
}

.hide-menu .menu_box:hover {
	background: #00aeef;
}

.hide-menu .menu_box .menu_a {
	background: none;
}

.hide-menu .menu_box .menu_b:after {
	width: 22px;
	top: 50%;
	margin-top: -1px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.hide-menu .menu_box .menu_b:before {
	width: 22px;
	bottom: 50%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu-link-list .link_name {
	position: relative;
	display: inline-block;
	width: 100%;
	font-size: 16px;
	margin-bottom: 15px;
	color: #000;
}

.menu-link-list .link_name:before {
	content: "";
	position: absolute;
	right: 0;
	width: calc(100% - 80px);
	height: 1px;
	background: #eeeeee;
	top: 50%;
}

.menu-link-list dl dd {
	float: left;
	width: 33.33333%;
	margin-bottom: 0;
}

.menu-link-list dl dd:hover a {
	color: #00aeef;
}

.menu-link-list dl:after {
	content: '.';
	height: 0;
	clear: both;
	visibility: hidden;
	display: block;
	font-size: 0
}

.contact_div .c_more_view {
	display: inline-block;
	width: 200px;
	height: 50px;
	font-size: 16px;
	text-align: center;
	line-height: 50px;
	background: #414141;
	color: #fff;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact_div .c_more_view:hover {
	background: #00aeef;
}


/*banner*/

.pc_banner {
	display: block;
}

.mb_banner {
	display: none;
}

.banner-wrapper .swiper-slide,
.banner-wrapper.swiper-container {
	width: 100%;
	height: 100%;
}

#banner .swiper-slide img,
#banner .swiper-slide a {
	width: 100%;
}

.banner-wrapper .swiper-slide,
.swiper-container {
	width: 100%;
	height: 100%;
}

#banner {
	position: relative;
	width: 100%;
}

#banner .swiper-slide {
	width: 100%;
	position: relative;
	text-align: center;
	font-size: 18px;
	background: #fff;
}

.banner_button {
	display: flex;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 60px;
	margin-top: -30px;
	background: rgba(0, 0, 0, 0);
	z-index: 33;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: #fff;
	transition: all 0.3s;
	cursor: pointer;
}

.banner_button:hover {
	background: rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
}

.banner_button.button-next {
	right: 0;
}

.banner_button.button-left {
	left: 0;
}

#banner .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 0;
	transition: all 0.4s;
	border: 2px solid #fff;
	background: rgba(255, 255, 255, 0);
	border-radius: 50%;
	opacity: 1;
}

#banner .swiper-pagination-bullet-active {
	background: #fff;
}

#banner .swiper-pagination {
	text-align: center;
	position: inherit;
}

#banner .swiper-pagination-bullet {
	position: relative;
	margin-left: 10px;
}

#banner .swiper-container-horizontal>.swiper-pagination-bullets,
#banner .swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 20%;
	left: 0;
}

.buttonbox {
	position: absolute;
	bottom: 5%;
	left: 0;
	width: 100%;
	z-index: 2;
}


/**/

.module_div_one .container {
	display: flex;
	min-height: 740px;
	height: 100%;
	align-items: center;
}

.dt-pro {
	position: absolute;
	left: 36%;
	width: initial;
	top: -15%;
}

.dt-pro2 {
	display: none;
}

.title_div h1 {
	text-align: left;
	margin-bottom: 20px;
	font-size: 48px;
	color: #000;
	Letter-spacing: 3px;
}

.title_div span {
	    display: inline-block;
    font-family: "Questrial", sans-serif;
    margin-right: 20px;
    font-size: 56px;
    Letter-spacing: 0px;
    font-weight: bold;
}

.title_div h2 {
	text-align: left;
	font-size: 36px;
	color: #666666;
	font-weight: normal;
}

.title_div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.title_div>img {
	margin: 120px 0 160px;
}

.more_view {
	position: relative;
	display: inline-block;
	text-align: center;
	line-height: 62px;
	border: 1px solid #666;
	color: #666;
	width: 68px;
	height: 68px;
	font-size: 24px;
	border-radius: 50%;
}

.more_view:hover {
	border-color: #fff;
	color: #fff;
	background: #00aeef;
}

.more_view:before {
	position: absolute;
	content: "";
	top: 0px;
	right: 0px;
	left: 0px;
	bottom: 0px;
	background: #00aeef;
	border-radius: 50%;
	z-index: -1;
	transition: all 0.3s;
	opacity: 0;
}

.more_view:hover:before {
	top: -10px;
	right: -10px;
	left: -10px;
	bottom: -10px;
	opacity: 0.2;
	transition: all 0.3s;
}

.video_product {
	min-height: 660px;
	position: relative;
}


/**/

.module_div {
	padding: 80px 0;
}

.module_div_two .container {
	min-height: 700px;
}

.module_div_two .container .img-box {
	max-width: calc(100% - 440px);
}

.step_one {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}

.step_one .title_div {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.module_div_two h2 {
	font-size: 26px;
}

.module_div_two .title_div>img {
	margin: 100px 0;
}

.step_two {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: space-between;
}


/**/

.module_div.door_product {
	overflow: hidden;
	padding: 60px 0 0;
}

.door_l {
	position: absolute;
	right: 52%;
	width: 60%;
	top: 50%;
	margin-right: 200px;
	margin-top: -99px;
}

.door_r {
	position: absolute;
	left: 52%;
	width: 60%;
	top: 50%;
	margin-left: 200px;
	margin-top: -99px;
}

.door_product .title_div {
	min-height: 600px;
	display: flex;
	font-weight: normal;
	align-items: center;
	justify-content: center;
}

.door_product .authentication {
	font-size: 28px;
	color: #000;
}

.door_product .authentication span {
	margin: 80px 0;
	display: inline-block;
	margin-right: 10px;
	color: #00aeef;
	font-size: 40px;
	font-family: "Questrial", sans-serif;
}

.door_product .title_div>a {
	text-decoration: underline;
}

.door_product .title_div>a:hover {
	color: #00aeef;
}


/**/

.other-wrapper.swiper-container {
	overflow: initial;
	width: 720px;
}

.other-wrapper.swiper-container a {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.other-wrapper.swiper-container a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.3s;
	z-index: 2;
}

.other-wrapper.swiper-container .other_div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	z-index: 2;
	flex-direction: column;
	align-items: center;
}

.other-wrapper.swiper-container .swiper-slide img {
	width: 100%;
	transform: scale(1);
	transition: all 0.3s;
}

.other-wrapper.swiper-container .swiper-slide a:hover img {
	transform: scale(1.1);
	transition: all 0.3s;
}

.other-wrapper.swiper-container .other_div h3 {
	margin-top: 10%;
	font-weight: normal;
	font-size: 20px;
	margin-bottom: 10px;
	color: #000;
}

.other-wrapper.swiper-container .swiper-slide-active .other_div h3 {
	font-size: 28px;
	margin-bottom: 20px;
}

.other-wrapper.swiper-container .other_div p {
	color: #000;
	font-size: 16px;
}

.other-wrapper .swiper-slide.swiper-slide-active a:before {
	background: rgba(0, 0, 0, 0);
	transition: all 0.3s;
}

.partner-wrapper .swiper-pagination-bullet,
.other-wrapper .swiper-pagination-bullet {
	bottom: 0;
	width: 40px;
	height: 5px;
	border-radius: 5px;
}

.other-wrapper {
	padding-bottom: 60px;
}

.other-wrapper .swiper-pagination-bullet-active,
.partner-wrapper .swiper-pagination-bullet-active {
	background: #000;
}


/**/

.about_module {
	display: flex;
	min-height: 600px;
	justify-content: space-between;
}

.about_module .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.about_right {
	display: flex;
	color: #fff;
	flex-direction: column;
}

.about_right .number_box {
	float: left;
	text-align: left;
	min-width: 460px;
	display: flex;
	justify-content: space-between;
}

.about_right .number_box>div {
	min-width: 150px;
}

.about_right .number_box:first-child>div {
	margin-bottom: 60px;
}
.about_right .number_box span{
	font-size: 50px;
	margin-right:5px
}
.about_right .number_box h3 {
	font-size: 30px;
	 font-family: 'Impact';
	font-weight:normal
}

.about_right .number_box p {
	font-weight: lighter;
}


/**/

.partner_module {
	padding-bottom: 220px;
	background: url(../images/partner_bj.jpg)no-repeat center bottom;
	background-size: auto;
}

.partner_module .title_div {
	display: inline-block;
	margin-bottom: 30px;
	width: 100%;
}

.partner_module .title_div h1 {
	display: block;
	width: 100%;
	text-align: center!important;
}

.partner-wrapper .swiper-slide {
	padding: 14px;
	text-align: center;
}
.partner-wrapper .swiper-slide ul{
	margin-left:-15px;
	margin-right:-15px;
}
.partner-wrapper .swiper-slide ul li{
	float:left;
	width:calc(16.66% - 30px);
	margin:15px;
}
.swiper-grid-column>.swiper-wrapper {
	flex-direction: initial!important;
}

.partner-wrapper .swiper-slide a {
	background: #fff;
	padding: 15px;
	display: flex;
	width: 100%;
	height: 100px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.partner-wrapper {
	padding-bottom: 56px;
}


/**/

.footer_box {
	padding: 80px 0 60px;
	background: #1b1b1b;
}

.foot-nav-title {
	text-align: left;
	margin-bottom: 26px;
	color: #FFF;
	font-size: 16px;
}

.foot-nav-con a {
	display: flex;
	text-align: left;
	color: #fff;
	font-size: 14px;
	font-weight: lighter;
}

.foot-nav-con a:hover {
	font-weight: normal;
}

.foot-nav {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.foot-nav-item2 {
	width: 260px;
}

.foot-nav-item2 li {
	float: left;
	width: auto;
	min-width: 100px;
	line-height: 28px;
	margin-right: 60px;
}

.foot-nav-item2 li:nth-child(2n) {
	margin-right: 0;
}

.footer_box .contact-text {
	color: #fff;
	text-align: center;
}

.footer_box .contact-text h3 {
	margin-top: 15px;
}

.footer-center {
	margin-top: 60px;
	padding-bottom: 22px;
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #333;
}

.footer-center img {
	height: 20px;
}

.footer-center ul {
	display: flex;
}

.footer-center ul li {
	color: #fff;
	margin: 0 10px;
}

.footer-center ul li a {
	font-size: 18px;
	color: #fff;
	opacity: 0.7;
}

.footer-center ul li a:hover {
	opacity: 1;
}

.footer-bottom>p {
	font-size:14px;
	text-align: left;
	color: #fff;
	font-weight: lighter;
}
.footer-bottom{
	font-size:14px;
}
.footer-bottom>p a,
.encoding a {
	font-size:14px;
	color: #fff;
}

.encoding {
	font-weight: lighter;
	display: flex;
	color: #fff;
	justify-content: space-between;
}


/**/

.video_bj {
	position: relative;
}

.back_bj {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: url(../images/vimg.jpg)no-repeat center;
	background-size: cover;
	bottom: 0;
	z-index: -1;
}

.back_bj>div {
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
}

.vidbg-overlay {
	background: rgba(0, 0, 0, 0)!important;
}


/**/

.banner_main {
	position: relative;
	min-height:600px;
}
.banner_main:before{
	position:absolute;
	content:"";
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.4);
	z-index:1;
}
.banner_main {
	display: flex;
	align-items: center;
}
.banner_main .container{
	position: relative;
	z-index:2
}
.title_banner h1 {
	font-weight: bold;
	font-size: 60px;
	color: rgba(255, 255, 255, 0.2);
}
.title_banner span{
	display:inline-block;
	margin-top:30px;color:#fff
	
}
.title_banner span i{
	margin:0 10px;
}
.title_banner span a{
	color:#fff
}
.title_banner span a:hover{
	color:#00aeef;
}
.title_banner p {
	position: relative;
	z-index: 2;
	font-size: 36px;
	color: #fff;
}


/**/

#contain-nav {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
}

#contain-nav .swiper-slide {
	text-align: center;
	line-height: 60px;
	height: 60px;
	margin-bottom: 0;
}

#contain-nav .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
}
#contain-nav .swiper-slide a:hover,
#contain-nav .swiper-slide a.active {
	background: #00aeef;
	color: #fff;
	text-align: center;
}

.container_right ul {
	margin-left: -15px;
	margin-right: -15px;
}

.container_right li {
	list-style: none;
	float: left;
	margin: 15px;
	width: calc(50% - 30px);
	padding: 20px;
	border-bottom: 1px dashed #eaeaea;
	transition: all 0.3s;
}

.container_right li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.container_right li:hover {
	transition: all 0.3s;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.container_right li a .img_box {
	width: 200px;
}

.container_right li a .txt_box {
	width: calc(100% - 220px);
}

.container_right li a h2 {
	font-size: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.container_right li a p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.container_right li a span {
	float: right;
	margin-top: 10px;
	font-size: 14px;
	color: 666;
}


/**/

.content_con_box {
    padding: 80px 0;
    display: flex;
    min-height: 800px;
    align-items: center;
    justify-content: center;
}

.headline {
	text-align: center;
	margin-bottom: 60px;
}

.headline h2 {
	font-size: 42px;
	margin-bottom: 0px;
}

.headline p {
	margin: 0 auto;
	margin-top: 30px;
	font-size: 16px;
	max-width: 1000px;
	text-align: center;
}


/**/

.company_img {
	overflow: hidden;
	background: #fff;
}

.company_text,
.staff_img {
	background: url(../images/libj.png)no-repeat center bottom fixed;
}

.company_img .container {
	position: relative;
}


/*.company_img .container:before{
	content: "";
	position: absolute;
	right: calc(100% - 10px);
	top: 0;
	bottom: 0;
	width: 100%;
	background: #fff;
	z-index: 2;
}*/

.about_text_box>div {
	margin-top: 80px;
	border-top: 1px solid #eaeaea;
	padding: 80px 0 0;
}

.about_text_left>img {
	margin-bottom: 40px;
}

.about_text_box p {
	margin-bottom: 15px;
	font-size: 18px;
}

.content_con_box .number_box {
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.content_con_box .number_box h3 {
	font-family: 'Impact';
	font-size: 50px;
	font-weight: normal;
	color: #000;
}

.content_con_box .number_box p {
	font-size: 20px;
}

.company-wrapper {
	width: 70%;
}

.company-wrapper.swiper-container {
	overflow: initial!important;
	padding-bottom:30px
}

.company-wrapper .swiper-wrapper {
	overflow: initial;
}

.company-wrapper .swiper-button-next {
	right: -25px;
}
.company-wrapper .swiper-button-prev {
	left: -25px;
}

.company-wrapper .swiper-button-next,
.company-wrapper .swiper-button-prev {
	background: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s;
}

.company-wrapper .swiper-button-next:hover,
.company-wrapper .swiper-button-prev:hover {
	top: calc(50% - 10px);
	transition: all 0.3s;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.company-wrapper .swiper-button-prev:after,
.company-wrapper .swiper-button-next:after {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}


.company-wrapper .swiper-pagination-bullet{
		background:none;
		
		opacity:1;
		margin:0 6px !important;
		width:9px;
		height:9px;
		position:relative;
		outline:none;
		vertical-align:middle;}
.company-wrapper .swiper-pagination-bullet span{
		width:3px;
		height:3px;
		background:#CCC;
		display:block;
		border-radius:50%;
		margin-top:3px;
		margin-left:3px;
	}
	.company-wrapper {
		padding-bottom:30px;
	}
.company-wrapper .swiper-pagination{
	bottom:0px!important;
}
	
.company-wrapper .swiper-pagination-bullet i{
		background:#000;
		height:1px;
		width:20px;
		position:absolute;
		top:4px;
		transform:scaleX(0);
		transform-origin:left;
		z-index:3;
		transition-timing-function:linear;
		}
.company-wrapper .swiper-pagination-bullet-active span,.swiper-pagination-bullet:hover span{
		width:9px;
		height:9px;
		margin-top:0;
		margin-left:0;
		background:#000;
		position:relative;
		z-index:1;
		}
.company-wrapper .swiper-pagination-bullet-active i{
		animation:middle 6s;
		}
.company-wrapper .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active i{
		animation:first 6s;
		}
.company-wrapper .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active i{
		animation:last 6s;
		}				
	@keyframes first{
	  0% {transform:scaleX(0.5);left:0px;}/*091*/
	  100% {transform:scaleX(1);left:2px;} /*0915*/
	}
	@keyframes last{
	  0% {transform:scaleX(0.7);left:-10px;}/*1090*/
	  20% {transform:scaleX(0.3);left:2px;} /*090*/
	  100% {transform:scaleX(0.3);left:0px;} /*090*/
	}		
	@keyframes middle{
	  0% {transform:scaleX(0.7);left:-10px;}/*1091*/
	  20% {transform:scaleX(0.45);left:2px;}/*092*/
	  100% {transform:scaleX(1);left:2px;} /*0913*/
	}	










.staff_img ul {
	margin-left: -15px;
	margin-right: -15px;
}

.staff_img ul li {
	width: calc(33.333% - 30px);
	float: left;
	margin: 15px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.staff_img ul li .text {
	padding: 20px;
	font-size: 16px;
	background: #fff;
}

.unfold_more {
	display: flex;
	margin: 60px auto 0;
	width: 80px;
	height: 80px;
	font-size: 20px;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 50%;
	color: #666;
}

.unfold_more:hover {
	border: 1px solid #000;
}

ul.staff_box {
	max-height: 740px;
	overflow: hidden;
	transition: all 0.3s;
}

ul.staff_box.cur {
	max-height: initial;
	height: auto;
	overflow: hidden;
	transition: all 0.3s;
}

.unfold_more .fa-angle-double-up,
.unfold_more.cur .fa-angle-double-down {
	display: none;
}

.unfold_more.cur .fa-angle-double-up,
.unfold_more .fa-angle-double-down {
	display: block;
}

.picture_box {
	min-height: 400px!important;
	background: url(../images/ab.jpg) no-repeat center fixed;
	background-size: cover;
	align-items: center;
}

.index-contact-p h1 {
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
	font-size: 30px;
	color: #fff;
	font-weight: normal;
	display: inline-block;
	padding: 10px 0px;
}

.container-more a {
	margin: 0 auto;
	display: flex;
	width: 200px;
	height: 54px;
	background: #000;
	color: #ffffff;
	padding: 7px 15px;
	position: relative;
	align-items: center;
	justify-content: space-around;
}

.container-more a:hover {
	background: #00aeef;
}

.img_box {
	overflow: hidden;
}

.img_box img {
	width: 100%;
	transform: scale(1);
	transition: all 0.3s;
}

.img_box:hover img {
	width: 100%;
	transform: scale(1.1);
	transition: all 0.3s;
}

.video_box {
	min-height: 660px;
	background: url(../images/ab.jpg) no-repeat center fixed;
	background-size: cover;
	align-items: center;
}

.video_box .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

.player-box {
	display: flex;
	position: relative;
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.player-box:hover {
	background: #fff;
}

.player-box>img {
	margin-right: -5px;
}

.player-box:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-animation: circlepulse2 1.5s ease 0s infinite;
	animation: circlepulse2 1.5s ease 0s infinite;
	z-index: 0;
}

.video_txt {
	margin-bottom: 80px;
}

.video_txt p {
	margin-top: 20px;
	color: #fff;
}

.video_txt p i {
	float: left;
	margin-right: 15px;
	margin-top: 12px;
	display: block;
	width: 286px;
	height: 1px;
	background: #fff;
	opacity: 0.5;
}

@-webkit-keyframes circlepulse2 {
	0% {
		-webkit-box-shadow: 0px 0px 0 0px rgba(255, 255, 255, 0.2);
		box-shadow: 0px 0px 0 0px rgba(255, 255, 255, 0.5);
	}
	50% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.2);
		box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.2);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.1);
		box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.1);
	}
}

.pop_up_video {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999999;
}

.pop_up_video>div {
	display: flex;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1);
	justify-content: center;
	align-items: center;
}

.pop_up_video .video {
	position: relative;
	width: 100%;
	max-width: 1200px;
}

.pop_up_video .video>span {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0px;
	right: 0px;
	line-height: 60px;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 30px;
	z-index: 99;
	cursor: pointer;
}


/**/

.year-box {
	position: relative;
}

.year-box:before {
	position: absolute;
	right: 20%;
	top: 50%;
	margin-top: -250px;
	content: "";
	width: 500px;
	height: 500px;
	background: url(../images/fw1200.png) no-repeat center;
	background-size: 100%;
	z-index: -1;
	-webkit-animation: rotate360 20s linear 0s infinite;
	animation: rotate360 20s linear 0s infinite;
}

@-webkit-keyframes rotate360 {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes rotate360 {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-ms-keyframes rotate360 {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(360deg);
	}
}

@keyframes rotate360 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.history_box_left {
	float:left;
	width: 400px;
	margin-bottom: 40px;
}

.history_box_left .year {
	position: relative;
	z-index: 2;
	display: flex;
	height: 200px;
	line-height: 200px;
	font-family: Akzidenz-Grotesk BQ;
	font-weight: bold;
	font-size: 120px;
	color: #000;
}

.history_box_left .headline h2 {
	text-align: left;
	margin-bottom: 220px;
}

.history_box_left .year span {
	display: block;
}
.history_box{
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.history_box_right {
	float:right;
	width: calc(100% - 400px);
	height:580px;
	padding-right: 20px;
	overflow: hidden;
	overflow-y: auto;
}

.history_box_right::-webkit-scrollbar {
	width: 5px;
	height: 10px
}

.history_box_right::-webkit-scrollbar-button:vertical {
	display: none
}

.history_box_right::-webkit-scrollbar-track,
.history_box_right::-webkit-scrollbar-corner {
	background-color: #fff
}

.history_box_right::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background-color: rgba(0, 0, 0, .3)
}

.history_box_right::-webkit-scrollbar-thumb:vertical:hover {
	background-color: #000
}

.history_box_right::-webkit-scrollbar-thumb:vertical:active {
	background-color: #000
}

.history_box_right .item:first-child {
	border-top: 2px solid #ccc;
}

.history_box_right .item {
	padding: 40px 0;
	border-bottom: 2px solid #ccc;
	cursor: default;
}

.history_box_right .item:hover {
	border-bottom: 2px solid #00aeef;
}

.history_box_right .item .year {
	font-weight: bold;
	margin-bottom: 15px;
	font-size: 20px;
}

.history_box_right .item span {
	display: ;
}

.history_box_right .item:hover .year {
	color: #00aeef;
}


/**/

.img_list {
	margin-left: -15px;
	margin-right: -15px;
}

.img_list li {
	float: left;
	padding: 10px;
	width: calc(33.3333% - 30px);
	margin: 15px;
	border: 1px solid #eaeaea;
}

.honor .text-box {
	padding: 20px 20px 10px;
	text-align: center;
	font-size: 16px;
	background: #fff;
}


/**/

.news_list li {
	position: relative;
	padding: 20px;
	border: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.news_list li:before {
	content: "";
	position: absolute;
	right: 50%;
	left: 50%;
	bottom: 0;
	height: 3px;
	background: #00AEF0;
	transition: all 0.5s;
}

.news_list li:hover:before {
	right: 0;
	left: 0;
	transition: all 0.5s;
}

.news_list li a {
	display: block;
}

.news_date {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 10px;
	min-width: 70px;
	background: #2f3035;
	color: #fff;
	z-index: 2;
	text-align: center;
}

.news_date p {
	color: #fff;
}

.news_date h3 {
	padding-bottom: 8px;
	margin-bottom: 5px;
	font-weight: bolder;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_list li .text-box .line {
	width: 100%;
	margin: 20px 0;
	height: 1px;
	background: #eaeaea;
}

.news_list li .text-box {
	padding: 20px 5px 0px;
}
.news_list li .text-box h5{
	font-size:18px;
	line-height:28px;
	    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news_list li .text-box p {
	text-align: center;
}

.news_list li:hover .text-box p {
	color: #00AEF0;
}

.news_list li:hover .news_date {
	background: #00AEF0
}

.news_list li:hover .img_box img {
	transform: scale(1.05);
	transition: all 0.3;
}

.new-con{
	margin-top:80px;
}
.news-con-title {
    text-align: center;
    color: #111111;
    font-size: 30px;
    margin-bottom: 20px;
}

.news-share {
    border: #c5c5c5 1px dashed;
    margin: 0 auto;
    margin-top: 15px;
}

.news-conner {
    margin-top: 15px;
	min-height:500px;
}
.news-view-container{
	padding:40px 0;
}
/**/

.download_list li {
	position: relative;
	padding-right: 160px;
	width: 100%;
	padding: 30px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	margin-bottom: 30px;
}

.download_list li a {}

.download_list li .img_box {
	float: left;
	width: 220px;
}

.download_list li h5 {
	
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.download_list li p {
	border-top: 1px solid #eaeaea;
	margin-top:20px;
	padding-top:20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.download_list li .text-box {
	float: left;
	margin: 0 0 0 40px;
	width: calc(100% - 380px);
}

.download_btn {
	display: flex;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	border-left: 1px solid #eaeaea;
	width: 100px;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.download_btn img {
	width: 30px;
	margin-bottom: 15px;
	opacity: 0.5;
}

.download_list li:hover .download_btn img {
	opacity: 1;
}

.download_list li:hover img {
	transform: scale(1.05);
	transition: all 0.3s;
}

.download_list li:hover h5 {
	color: #00AEF0;
}


/**/

.contact_list {
	margin-left: -15px;
	margin-right: -15px;
}

.contact_list .contact_list_li{
	float: left;
	width: calc(33.333% - 30px);
	margin: 15px;
	padding: 40px 0px;
	border-top: 2px solid #000;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
}
.contact_list .contact_list_li.first-child{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.contact_list .contact_list_li.first-child .tb_bn{
	margin-bottom:0
}
.contact_list .contact_list_li.cx{
	display:flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}
.tb_bn {
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 40px;
}

.contact_list .contact_list_li em{
	display: flex;
	margin-bottom: 10px;
	width: 80px;
	height: 80px;
	background: #000;
	color: #fff;
	font-size: 18px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
}

.contact_list .contact_list_li p{
	display: flex;
	color: #000;
	font-size: 16px;
	line-height: 28px;
}

.contact_list .contact_list_li strong {
	font-weight:400;
	display: inline-block;
	min-width:80px;
	color: #666;
}

.contact_sign {
	display: block;
	width: 80px;
	height: 80px;
	background: #00aeef;
	position: relative;
}

.contact_sign .btn {
	text-align: center;
	font-size: 12px;
	color: #ffffff;
	width: 80px;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.map_message {
	position: relative;
	overflow: hidden;
	min-height: 400px;
	border-top: 1px solid #eaeaea;
}

.map_message {
	width: 100%;
}

#allmap {
	width: 64%;
	height: 780px;
	position: relative;
}

.contact_sign .btn .icon-dh {
	width: 30px;
	margin-bottom: 5px;
}

.contact_sign:before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -10px;
	display: block;
	width: 0;
	height: 0;
	border-top: 10px solid #00aeef;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.message_box {
	display: flex;
	width: 36%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.8);
	align-items: center;
	justify-content: center;
}

.map_message {
	background: url(../images/cenbj.jpg) no-repeat center fixed;
	background-size: cover;
}

.message_box #feedback {
	padding: 10%;
	width: 100%;
}

.message_box #feedback>h3 {
	font-size: 20px;
	margin-bottom: 40px;
	color: #fff;
}

.message_box #feedback label {
	color: #fff;
	font-weight: normal;
}

.message_box #feedback .form-control,
.message_box #feedback .form-textarea {
	background: none;
	border: none;
	padding: 0;
	border-bottom: 1px solid #fff;
	outline: 0!important;
	color: #fff;
}

.message_box #feedback .form-control:focus {
	border-bottom: 1px solid #00aeef;
	box-shadow: initial!important;
}

#feedback .feedback-submit {
	width: 100%;
	margin-top: 15px;
	border-radius: 0;
	background: #00aeef;
	font-size: 14px;
	font-weight: normal;
	color: #fff;
}

#feedback .feedback-submit:hover {
	background: #00c7ef;
}


/**/

.culture-container {
	display: flex;
	width: 100%;
	height:760px;
}

.culture-container .slide {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
}

.culture-container .slide div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	transition: all 1s;
}

.culture-container .slide div h2 {
	font-weight: lighter;
	margin-bottom: 40px;
}

.culture-container .slide div p {
	font-weight: lighter;
	font-size: 18px;
}

.culture-container .slide:hover {
	width: 50%;
	transition: all 0.5s;
}

.culture-container .slide:hover div {
	background: rgba(0, 0, 0, 0.2);
	transition: all 1s;
	cursor: pointer;
}


/**/

.intelligent_box li {
	padding: 0;
}

.intelligent_box li .text-box {
	position: relative;
	padding: 15px;
	font-size: 16px;
}

.intelligent_box li .text-box:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 100%;
	left: 0;
	right: 0;
	background: #00aeef;
	transition: all 0.3s;
}

.intelligent_box li .text-box p {
	position: relative;
	z-index: 1;
}

.intelligent_box li:hover .text-box p {
	color: #fff!important;
}

.intelligent_box li:hover .text-box:before {
	bottom: 0;
	transition: all 0.3s;
}

.capability_text {
	max-width: 1100px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 32px;
}


/**/

.honor-container .swiper-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.honor-container .swiper-slide p {
	font-size: 16px;
}

.honor-container .swiper-slide>img {
	width: 100%
}

.honor-container .swiper-slide .img_box {
	position: relative;
	padding: 15px;
	width: 100px;
	margin-bottom: 40px;
}

.honor-container .swiper-slide .img_box:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px dashed #999;
	border-radius: 50%;
	-webkit-animation: rotate360 20s linear 0s infinite;
	animation: rotate360 20s linear 0s infinite;
}

.honor-container .swiper-slide .line {
	width: 1px;
	height: 150px;
	background: #999;
	margin: 40px 0;
}

@-webkit-keyframes rotate360 {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes rotate360 {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-ms-keyframes rotate360 {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(360deg);
	}
}

@keyframes rotate360 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.capability_honor {
	margin-top: 100px;
}


/**/

.content_r {
	margin: 0 auto;
	width: 90%;
}

.content_r li {
	position: relative;
	float: left;
	margin: 5px;
	padding: 40px;
	width: calc(50% - 10px);
	min-height: 560px;
	background: #000;
	color: #fff;
}

.content_r li h3 {
	position: relative;
	z-index: 1;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.content_r li p {
	position: relative;
	z-index: 1;
}

.content_r li:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: all 1s;
}

.content_r li:hover:before {
	background: rgba(0, 0, 0, 0.2);
	transition: all 1s;
}


/**/

.ideabox {
	background: url(../images/rclnbj.jpg) no-repeat center fixed;
	background-size: cover;
}

.rc_text p {
	text-indent: 35px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 30px;
}

.rc_text p:last-child {
	border: none;
}

.rc_text {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.rc_text>div {
	width: 50%;
	padding: 30px;
}

.rc_text>img {
	max-width: 50%;
}


/**/

.cultivate_box {
	margin: 120px 0;
	background: #f8f8f8;
	border-radius: 10px;
}

#application {
	overflow: hidden;
}

.application-container {
	padding-top: 100px;
	padding-bottom: 100px;
}

.application-p {
	padding-right: 200px;
	position: relative;
	padding-bottom: 100px;
}

.application-p-con {
	max-width: 1200px;
}

.application-icon {
	position: absolute;
	right: 10px;
	top: 0;
	position: absolute;
	width: 130px;
	height: 130px;
	background: url(../images/icon-cicle.png) no-repeat;
	background-size: cover;
	webkit-animation: rotate 16s linear infinite;
	animation: rotate 16s linear infinite;
}

.application-items-con {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.app-items-nav {
	width: 300px;
	position: relative;
}

.app-items-lists {
	width: calc(100% - 300px);
}

.app-items-lists-con {
	width: 200%;
}

.app-item .app-details {
	display: none;
}

.app-img img {
	width: 100%;
}

.app-items-control {
	position: absolute;
	bottom: 0;
}

.app-items-btns {
	margin-bottom: 1rem;
}

.app-items-btns .app-button {
	display: inline-block;
	font-size: 22px;
	margin-right: 30px;
	cursor: pointer;
}

.app-items-name-en {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.app-items-num {
	font-size: 18px;
	letter-spacing: 5px;
}

.app-items-line {
	position: relative;
	width: 96px;
	height: 1px;
	background-color: #eeeeee;
	display: inline-block;
	vertical-align: middle;
}

.app-details-p h4 {
	font-size: 20px;
	margin-bottom: 1rem;
	font-weight: normal;
}

.app-items-line .pre-line:after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #00aeef;
	animation-fill-mode: both;
	animation-duration: 6s;
	animation-timing-function: linear;
}

.app-items-line.is-active .pre-line:after {
	animation-name: line_1;
}

.application-items-details {
	margin-top: 2rem;
	display: flex;
	width: calc(100% - 300px);
	float: right;
}

.app-details-p {
	width: 100%;
	padding-right: 30px;
}

@keyframes line_1 {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}


/**/

.emp_box li {
	border-radius: 10px;
	padding: 0;
	overflow: hidden;
	border: none;
}

.emp_box li .text-box {
	padding: 20px;
	text-align: center;
	height: 66px;
	background: #f8f8f8;
}

.emp_box li:hover {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.emp_box li:hover .text-box {
	background: #fff;
}


/**/

.join_list li {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	background: #fff;
	border-radius: 10px;
}

.join_top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 25px 50px 25px 35px;
	align-items: center;
	cursor: pointer;
}

.zpTopLeft {
	padding-right: 20px;
	display: flex;
	flex-direction: column;
}

.zpTopLeft .zpTopCn {
	font-size: 20px;
	color: #000;
	line-height: 2em;
}

.zpTopLeft .zpTopEn {
	font-size: 14px;
	color: #666666;
	line-height: 2em;
}



.zpTopRight .anniu {
	display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #EAEAEA;
    background:#f0f4f7;
    justify-content: center;
    transform: rotate(0deg);
    transition: all 0.3s;
}
.zpTopRight.cur .anniu {
	background: #00aeef;
	color: #fff;
	transform: rotate(180deg);
	transition: all 0.3s;
}
.join_hiden {
	width: 100%;
	border-top: #dadada solid 1px;
	padding: 30px 50px 50px 30px;
	transition: all 1s;
	background: #fff;
	display: none;
	z-index: 1;
}

.join_hiden p {
	line-height: 28px;
}

.join_hiden.cur {
	display: block;
	transition: all 1s;
}
/**/
#contain-nav-top.active{
	position:fixed;
	top:55px;
	background:#fff;
	bottom:initial;
	border-bottom:1px solid #eaeaea;
	padding:0
}
#contain-nav-top.active .swiper-slide a{
	color:#333
}
#contain-nav-top.active .swiper-slide a.active{
	color:#00aeef;
}
#contain-nav-top{
	position: absolute;
	padding:15px 0;
    bottom:20px;
	left:0;
	right:0;
	z-index:8;
}

#contain-nav-top.active .swiper-slide{
	line-height: 50px;
	height: 50px;
	transition:all 0.3s;
}
#contain-nav-top .swiper-slide{
	position:relative;
	width:120px;
	line-height: 80px;
	height: 80px;
	text-align:center;
	transition:all 0.3s
}

#contain-nav-top .swiper-slide:after{
	position:absolute;
	content:"";
	left:50%;
	right:50%;
	height:2px;
	background:#000;
	bottom:2px;
	transition:all 0.3s;
}
#contain-nav-top .swiper-slide a:hover{
	color:#00aeef;
}
#contain-nav-top .swiper-slide a.active{
	border-bottom:3px solid #fff;
}
#contain-nav-top .swiper-slide:last-child:before{
	opacity:0
}
#contain-nav-top .swiper-slide a{
	position: relative;
	color: #fff;
	display:block;
	width:100%;
	height:100%
}
/**/
.product_main{
	background: #fff;
	position:fixed;
	top:55px;
	left: 0;
	right: 0;
	z-index:3;
}
#contain-nav{
	position: initial;
	background: #fff;
}
#contain-nav .container-nav-container{
	padding: 0 40px;
}
#contain-nav .swiper-slide{
	line-height: 80px;
	height: 80px;
}
#contain-nav .swiper-slide a{
	position: relative;
	color: #999;
}
#contain-nav .swiper-slide a:before{
	position: absolute;
	content: "";
	left: 50%;
	right:50%;
	bottom: 0;
	height: 2px;
	background: #000;
	transition: all 0.5s;
}

#contain-nav .swiper-slide a.active:before,
#contain-nav .swiper-slide a:hover:before{
	right: 0;
	left: 0;
	transition: all 0.5s;
	
}

#contain-nav .swiper-slide a.active,
#contain-nav .swiper-slide a:hover{
	background: none;color: #000;
}
#contain-nav .swiper-button-next{
	right: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background:#f0f4f7;
}
#contain-nav .swiper-button-prev{
	left: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background:#f0f4f7;
	
}
#contain-nav .swiper-button-prev:hover,
#contain-nav .swiper-button-next:hover{
	background: #00aeef;
}
#contain-nav .swiper-button-prev:hover:after,
#contain-nav .swiper-button-next:hover:after{
	color: #fff;
}
.product_main .swiper-button-prev:after,.product_main .swiper-button-next:after{
	font-size: 14px;
	color: #000;
}

#contain-nav2 {
	padding:10px 0;
	border-bottom:1px solid #eaeaea;
}
.container-nav-two .swiper-slide{
	width:150px;
}
.container-nav-two .swiper-slide a{
	text-align:center;
	position:relative;
	line-height:50px;
	display:block;
	width:100%;
	height:100%;
}
.container-nav-two .swiper-slide a:before{
	position:absolute;
	content:"";
	width:1px;
	height:20px;
	right:0;
	top:50%;
	margin-top:-10px;
	background:#ddd;
}
.container-nav-two .swiper-slide:last-child a:before{
	opacity:0;
}
.container-nav-two .swiper-slide a.active{
	color:#00aeef;
}
/**/
.pro_title{
	margin-top:100px;
}
.product-con .content_con_box{
display: block;
}
.product-con{
	background: #f0f4f7;
}
.product_list li{
	float: left;
	width: calc(33.33% - 30px);
	margin: 15px;
	border: 1px solid #eaeaea;
}
.product_list li .img_box{
	position: relative;
	background: #fff;
	overflow: hidden;
}
.product_list li .text_box{
	border-top: 1px solid #eaeaea;
	padding:20px;
	line-height: 28px;
	text-align:center
}
.product_list li .more_box{
	position: absolute;
	bottom: -50px;
	right: 10%;
	left: 10%;
	background: #000;
	color: #fff;
	display: flex;
	    align-items: center;
    justify-content: center;
    font-size: 14px;
    height:40px;
    margin: 0 auto;
    z-index: 9;
    transition: all 0.5s;
}
.product_list li:hover .more_box{
	bottom:20px;
	transition: all 0.5s;
}
.product_list li:hover{
	background: #fff;
}
.product_list li .more_box:hover{
	background: #00aeef;
}
/**/
.product-view{
	padding-top:180px;
}
.product-view .dh{
	margin-bottom: 30px;
}
.pro-view-container {
	display: flex;
	justify-content: space-between;
}

.pro-view-container .pro-img {
	text-align: center;
}

.pro-view-container .pro-view-left {
	width: 60%;
	padding-right: 30px;
}

.pro-view-img {
	width: 100%;
	margin: auto;
	position: relative;
}

.gallery-top .swiper-slide {
	display: flex;
	width: 100%!important;
	text-align: center;
	background: #ffffff;
	justify-content: center;
	align-items: center;
}

.gallery-top .swiper-slide img {
	max-width: 500px;
}

.swipers-btns {
	position: absolute;
	top: 50%;
	width: 100%;
	opacity: 0;
	z-index: 999;
	left: 0;
	margin-top: -12px;
}

.swipers-btn.swiper-button-disabled {
	color: #cccccc;
}

.swipers-btn {
	position: absolute;
	display: block;
	cursor: pointer;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #000;
	text-align: center;
	line-height: 34px;
	font-size: 40px;
	text-align: center;
	outline: 0;
}

.pro-view-img:hover .swipers-btns {
	opacity: 1;
}

.pro-view-but-prev {
	right: 15px;
}

.pro-view-but-next {
	left: 15px;
}

.gallery-thumbs {
	margin-bottom: 40px;
	height: auto;
	padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
	opacity: 0.4;
	height: auto;
	border: 1px solid #cdcdcd;
	background: #fff;
}

.pro-view-container .pro-view-right {
	width: 40%;
	padding-left: 20px;
}

.pro-view-container .pro-title {
	font-size: 18px;
	position: relative;
	padding-right: 66px;
	padding-bottom: 20px;
	border-bottom: 1px solid #EAEAEA;
	margin-bottom: 40px;
}

.pro-view-container .pro-title h1 {
	font-size: 24px;
	margin-bottom: 0;
}

.pro-view-container .pro-back a.btn-contact {
	position: relative;
	background: #000;
	color: #ffffff;
	overflow: hidden;
}

.pro-view-container .pro-back a.btn-contact:after {
	background-color: #fff;
	content: "";
	height: 100%;
	left: -140%;
	opacity: .1;
	position: absolute;
	top: 0;
	transform: skew(-38deg, 0deg);
	-webkit-transform: skew(-38deg, 0deg);
	-webkit-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 120%;
	border-right: 15px #fff solid;
}

.pro-view-container .pro-back a.btn-contact:hover:after {
	left: -8%;
	transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.pro-back {
	display: flex;
	margin-top: 40px;
	border-top: 1px solid #EAEAEA;
	padding-top: 30px;
	align-items: center;
}

.pro-view-container .pro-back a {
	display: inline-block;
	font-size: 16px;
	color: #111111;
	line-height: 50px;
	margin-right: 10px;
	height: 50px;
	width: 100%;
	text-align: center;
}

.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border-color: #000;
}

.pro-view-container .pro-back b {
	margin-left: 20px;
	display: flex;
	font-weight: bold;
	font-size: 26px;
	color: #E92631;
	flex-direction: column;
	margin-bottom: 5px;
}

.pro-view-container .pro-back b span {
	font-size: 14px;
	font-weight: normal;
	color: #333;
	margin-bottom: -2px;
}

.pro-view-back {
	position: absolute;
	right: 0;
	color: #fff;
	background: #eaeaea;
	font-size: 14px;
	top: 0px;
	padding: 5px 20px;
}

.pro-view-back:hover {
	background: #000;
}

.pro-view-back:hover a {
	display: block;
	color: #fff;
}
.pro-view-jj{
	border-top: 1px solid #eaeaea;
	padding-top: 40px;
}
.product-view .product_details{
	margin-top: 40px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
}
.product-view .product_details h2{
	font-size: 18px;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.partner-pc{
		display:block;
	}
	.partner-ph{
		display:none;
	}
	
.honor2-container{
	padding-bottom:30px!important;
}	
	
.honor2-container .swiper-pagination{
	bottom:0!important;
}
.honor2-container  .swiper-pagination-bullet-active{
	background:#000
}
@media (min-width: 1200px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 75%;
	}
}

@media (max-width:1600px) {
	.contact_list .contact_list_li {
		width: calc(50% - 30px);
	}
}

@media (max-width:1370px) {
	ul.staff_box {
		max-height: 670px;
	}
}

@media (max-width: 1200px) {
	
	.rc_text>div{
		width:100%;
	}
	.rc_text>img{
		max-width:100%;
	}
	.rc_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
	.culture-container .slide div h2 {
		font-size: 24px;
	}
	.culture-container .slide div p {
		font-size: 16px;
		text-align: center;
	}
	ul.staff_box {
		max-height: 780px;
	}
	.headline h2 {
		font-size: 36px;
	}
	.content_con_box {
		min-height: 700px;
	}
	.staff_img ul li {
		width: calc(50% - 30px);
	}
	.footer_box .contact-text {
		display: none;
	}
	.module_div_two .container,
	.door_product .title_div {
		min-height: 440px;
	}
	.about_module .about_left {
		width: 280px;
	}
	.title_div>img {
		margin: 80px 0 100px;
	}
	.module_div_two h2 {
		font-size: 22px!important;
	}
	.module_div_two .title_div h1 {
		font-size: 36px;
	}
	.module_div_two .title_div>img {
		margin: 60px 0;
	}
	.module_div_one .container {
		min-height: 740px;
	}
	.title_div h1 {
		font-size: 40px;
	}
	.title_div span {
		font-size: 58px;
	}
	.title_div h2 {
		font-size: 28px;
	}
	.title_div>img {
		width: 250px;
	}
	.module_div {
		padding: 60px 0;
	}
	.more_view {
		width: 58px;
		height: 58px;
		line-height: 54px;
	}
	.other-wrapper.swiper-container {
		width: 680px;
	}
}

@media (max-width: 991px) {
	.clear1{
	display:none;
}
.clear2{
	display:block;
}
	.company-wrapper {
    width: 90%;
	}
	.partner-pc{
		display:none;
	}
	.partner-ph{
		display:block;
	}
	.partner-wrapper .swiper-slide ul li{
		width: calc(25% - 30px);
	}
	.download_list li{
		padding:20px
	}
	.download_list li{
		padding-right:100px;
	}
	.download_list li .text-box,
	.download_list li .img_box{
		float:none;
		width:100%;
		margin:0;
		padding-right:20px;
	}
	.download_list li .text-box{
		
		padding-top:20px
	}
	.gallery-thumbs{
		margin-top: 20px;
	}
	.pro-view-container .pro-view-left,
	.pro-view-container .pro-view-right{
		width: 100%;
		max-width: initial;
		padding: 0;
	}
	.pro-view-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
	}
	.application-items-details {
		float: none;
		width: 100%;
	}
	.app-items-nav {
		display: none;
	}
	.app-items-lists,
	.app-items-lists-con {
		width: 100%;
	}
	.culture-container {
		display: initial;
	}
	.culture-container:after {
		content: '.';
		height: 0;
		clear: both;
		visibility: hidden;
		display: block;
		font-size: 0
	}
	.culture-container .slide:hover {
		width: 50%;
	}
	.culture-container .slide {
		position: relative;
		float: left;
		width: 50%;
		height: 600px;
	}
	.culture-container .slide div {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	.contact_list .contact_list_li{
		width: calc(100% - 30px);
	}
	.img_list li {
		width: calc(50% - 30px);
	}
	.history_box_right .item:first-child {
		border-top: 0;
	}
	.year-box {
		height: 200px;
	}
	.history_box_left {
		margin-top: 0px;
		margin-bottom: 100px;
	}
	.history_box {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.history_box_left .year {
  
    justify-content: center;
	}
	.year-box:before{
		right:50%;
		margin-right:-250px;
	}
	.history_box_left .headline h2{
		text-align:center;
	}
	.history_box_right {
		width: 100%;
	}
	.banner_main {
		min-height: 700px;
	}
	.company-wrapper .swiper-button-next,
	.company-wrapper .swiper-button-prev {
		width: 50px;
		height: 50px;
	}
	.headline {
		margin-bottom: 40px;
	}
	.company-wrapper .swiper-button-prev:after,
	.company-wrapper .swiper-button-next:after {
		font-size: 14px;
	}
	.content_con_box {
		min-height: 500px;
	}
	.content_con_box .number_box h3 {
		font-size: 40px;
	}
	.content_con_box .number_box p {
		font-size: 14px;
	}
	.module_div_one .container {
		min-height: 530px;
	}
	.title_div h1,
	.module_div_two .title_div h1 {
		font-size: 30px;
		Letter-spacing: 0px;
	}
	.title_div span {
		margin-right: 5px;
		font-size: 46px;
	}
	.title_div h2,
	.module_div_two h2 {
		font-size: 20px!important;
	}
	.title_div>img {
		width: 170px;
	}
	.title_div>img {
		margin: 60px 0 80px;
	}
	.module_div_two {
		padding: 0 0;
		position: relative;
		overflow: hidden;
	}
	.step_one .img-box>img {
		position: absolute;
		top: 0;
		max-height: 440px;
		right: calc(50% + 40px);
	}
	.step_two .img-box>img {
		position: absolute;
		left: calc(50% + 40px);
		bottom: 0;
		max-height: 440px;
	}
	.module_div_two .title_div {
		max-width: calc(50% - 40px);
	}
	.about_module .container {
		display: flex;
		align-items: center;
		justify-content: space-around;
		flex-direction: column;
	}
	.about_right .number_box>div {
		text-align: center;
	}
	.encoding {
		justify-content: space-between;
		flex-direction: column;
	}
	.contact_div h2.title {
		font-size: 20px;
	}
	.menu-contact-list h4 {
		font-size: 18px;
	}
	#allmap {
		width: 50%;
	}
	.message_box {
		width: 50%;
	}
	.product_list li {
    width: calc(50% - 30px);
	}
	.product_list li .text_box{
		padding:10px 20px;
	}
}

@media (max-width: 768px) {
	
	body{
		font-size:14px;
	}
	.partner-wrapper .swiper-slide ul{
		margin-left:-5px;
		margin-right:-5px;
	}
	.partner-wrapper .swiper-slide a{
		height:50px;
		overflow:hidden;
	}
	.partner-wrapper .swiper-slide ul li{
		margin:5px;
		width:calc(25% - 10px)
	}
	.download_btn{
		width:60px
	}
	.product-view{
		padding-top:140px;
	}
	.download_list li p{
		display:none;
	}
	.download_list li .text-box{
		padding-top:10px;
	}
	.download_list li h5{
		margin-bottom:10px;
	}
	.download_list li .text-box, .download_list li .img_box {
      
        padding-right: 10px;
    }
	.download_list li{
		padding:10px;
		padding-right:60px;
	}
	.download_list li h5{
		font-size:16px;
	}
	.foot-nav{
		display: none;
	}
	.product_list li {
    width: calc(100% - 30px);
	}
	.zpTopRight .anniu{
		text-align: center;
	}
	.zpTopRight .anniu i{
		margin-left: 0;
	}
	.join_top{
		padding: 25px;
	}
	.news_list h5 {
		font-size: 16px;
	}
	#allmap {
		width: 100%;
	}
	.message_box {
		width: 100%;
		position: initial;
	}
	ul.staff_box {
		max-height: 607px;
	}
	.banner_main {
		min-height: 600px;
	}
	.title_banner h1 {
		font-size: 60px;
	}
	.pc_banner {
		display: none;
	}
	.mb_banner {
		display: block;
	}
	.module_div {
		padding: 30px 0;
	}
	.module_div_two .container,
	.door_product .title_div,
	{
		min-height: 380px;
	}
	.step_one .img-box>img,
	.step_two .img-box>img {
		max-height: 420px;
	}
	.video_product,
	.module_div_two .container,
	.door_product .title_div {
		min-height: 400px;
	}
	.module_div_one .container {
		min-height: 400px;
	}
	.title_div h2,
	.module_div_two h2 {
		font-size: 14px!important;
	}
	.module_div_two .title_div>img {
		margin: 40px 0;
	}
	.contact_div h2.title {
		font-size: 20px;
	}
	.menu-contact-list h4 {
		font-size: 18px;
	}
	.other-wrapper.swiper-container {
		width: 100%;
	}
	.other-wrapper.swiper-container .swiper-slide-active .other_div h3 {
		font-size: 20px;
		margin-top: 8%;
		margin-bottom: 10px;
	}
	.dt-pro {
		left: 40%;
	}
	.about_module {
		min-height: 500px;
	}
	.about_right .number_box h3 {
		font-size: 30px;
	}
	.about_right .number_box {
		min-width: 100%;
	}
	.other-wrapper.swiper-container .other_div p {
		font-size: 14px;
	}
	.door_l,
	.door_r {
		width: 80%;
	}
	.door_l {
		margin-right: 111px;
	}
	.door_r {
		margin-left: 111px;
	}
	.module_div.door_product {
		padding: 0;
	}
	.hide-menu-container>.contact_div:last-child {
		display: none;
	}
	.hide-menu-container>.contact_div {
		border-right: 0;
		padding-right: 0;
		margin-right: 0;
	}
	.about_text_box p {
		font-size: 16px;
	}
	#contain-nav .swiper-slide {
		line-height: 48px;
		height: 48px;
	}
}

@media (max-width: 680px) {
	.content_r li{
		width:calc(100% - 10px);
	}
	#contain-nav-top.active{
		top:45px
	}
	.pro_title{
		margin-top:60px;
	}
	.product_main{
		top:45px;
	}
	.culture-container .slide {
		width: 100%;
	}
	.culture-container .slide:hover {
		width: 100%;
	}
	.img_list li {
		width: calc(100% - 30px);
	}
	.title_banner p {
		font-size: 24px;
	}
	#contain-nav .swiper-slide {
		min-width: 100px;
	}
	.index-contact-p h1 {
		font-size: 18px;
	}
	ul.staff_box {
		max-height: 670px;
	}
	.staff_img ul li {
		width: calc(100% - 30px);
	}
	.company_img {
		min-height: initial;
	}
	.headline h2 {
		font-size: 24px;
	}
	.video_txt p i {
		width: 128px;
	}
	.video_txt>img {
		width: 200px;
	}
	.about_text_box>div {
		padding-top: 60px;
		margin-top: 60px;
	}
	.about_text_box p {
		font-size: 14px;
	}
	.content_con_box .number_box h3 {
		font-size: 20px;
	}
	.other-wrapper.swiper-container .swiper-slide-active .other_div h3 {
		margin-top: 15px;
	}
	.title_div h1,
	.module_div_two .title_div h1 {
		font-size: 26px;
	}
	.module_div_two .container .img-box,
	.module_div_two .title_div {
		width: 100%;
		max-width: inherit;
	}
	.step_one,
	.step_two {
		align-items: center;
		flex-direction: column;
		justify-content: space-between;
	}
	.step_two .title_div {
		padding-bottom: 0!important;
	}
	.module_div_two .title_div>img {
		margin-bottom: 0;
	}
	.step_one .title_div {
		align-items: flex-start;
	}
	.module_div_two .img-box>img {
		position: inherit!important;
	}
	.module_div_two .title_div {
		position: relative;
		padding: 20px 0 30px;
	}
	.module_div_two .more_view {
		position: absolute;
		top: 20px;
		right: 0;
	}
	.title_div span {
		font-size: 38px;
	}
	.dt-pro2 {
		display: block;
		position: absolute;
		width: 50%;
		left: 50%;
		right: 0;
		bottom: -60px;
	}
	.dt-pro {
		display: none;
	}
	.header-right a.search_btn {
		margin-right: 0;
		height: 45px;
		font-size: 16px;
	}
	.header-right a.lang_box {
		display: none;
	}
	.fupad img {
		height: 16px;
	}
	.pc_header,
	.menu_box {
		height: 45px;
	}
	.header-right {
		line-height: 45px;
	}
	.foot-nav-title {
		margin-bottom: 15px;
	}
	.foot-nav-title {
		font-size: 14px;
	}
	.foot-nav-item2 {
		max-width: 80px;
	}
	.footer-center img {
		height: 16px;
	}
	.footer_box {
		padding: 30px 0 30px;
	}
	.footer-center{
		margin-top: 0;
	}
	.partner_module .title_div {
		margin-bottom: 0;
	}
}